[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
    ZIP constants

        #define MAX_ZIP_VERSION         10
        #define ZIPSignatureLocal       0x04034B50l
        #define ZIPSignatureCentral     0x02014B50l
        #define ZIPSignatureEndCentral  0x06054B50l

    ZIP macros

        #define nextZIPlocal(Z)         (Z.FileNameLength +
                                         Z.ExtraFieldLength +
                                         Z.CompressedSize)
        #define ZIPversion(Zversion)    (Zversion & 0x00FF)
        #define _ZIPmajor(Zversion)     (ZIPversion(Zversion) / 10)
        #define _ZIPminor(Zversion)     (ZIPversion(Zversion) % 10)

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson